home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / m4-1_0_3.lha / m4-1.0.3 / lib / Makefile.in < prev    next >
Makefile  |  1992-12-19  |  2KB  |  80 lines

  1. # Makefile for GNU m4 library.
  2. # Copyright (C) 1992 Free Software Foundation, Inc.
  3.  
  4. # This program is free software; you can redistribute it and/or modify
  5. # it under the terms of the GNU General Public License as published by
  6. # the Free Software Foundation; either version 2, or (at your option)
  7. # any later version.
  8.  
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13.  
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program; if not, write to the Free Software
  16. # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17.  
  18. SHELL = /bin/sh
  19.  
  20. #### Start of system configuration section. ####
  21.  
  22. srcdir = @srcdir@
  23. VPATH = @srcdir@
  24.  
  25. CC = @CC@
  26. RANLIB = @RANLIB@
  27.  
  28. DEFS = @DEFS@
  29. CFLAGS = -g
  30. LIBOBJS = @LIBOBJS@
  31. ALLOCA = @ALLOCA@
  32.  
  33. prefix = /usr/local
  34. exec_prefix = $(prefix)
  35. bindir = $(exec_prefix)/bin
  36. infodir = $(prefix)/info
  37.  
  38. #### End of system configuration section. ####
  39.  
  40. .c.o:
  41.     $(CC) -c $(CFLAGS) $(CPPFLAGS) $(DEFS) -I$(srcdir) $<
  42.  
  43. HEADERS = obstack.h regex.h getopt.h regex.h.old
  44. SOURCES = obstack.c regex.c getopt.c getopt1.c vfprintf.c regex.c.old alloca.c
  45. OBJECTS = obstack.o regex.o getopt.o getopt1.o $(LIBOBJS) $(ALLOCA)
  46.  
  47. DISTFILES = COPYING.LIB Makefile.in $(HEADERS) $(SOURCES)
  48.  
  49. all: libm4.a
  50.  
  51. libm4.a: $(OBJECTS)
  52.     $(AR) cru libm4.a $(OBJECTS)
  53.     $(RANLIB) libm4.a
  54.  
  55. install:
  56.  
  57. uninstall:
  58.  
  59. check:
  60.  
  61. tags: TAGS
  62.  
  63. TAGS: $(SOURCES) $(HEADERS)
  64.     etags $(SOURCES) $(HEADERS)
  65.  
  66. clean:
  67.     rm -f libm4.a *.o
  68.  
  69. distclean: clean
  70.     rm -f Makefile
  71.  
  72. realclean: distclean
  73.  
  74. dist: $(DISTFILES)
  75.     mkdir ../`cat ../.fname`/lib
  76.     ln $(DISTFILES) ../`cat ../.fname`/lib
  77.  
  78. Makefile: Makefile.in
  79.     cd ..; ./config.status
  80.